home *** CD-ROM | disk | FTP | other *** search
- Howdy,
-
- Three simple changes will make the PCWINDOW program work nicely with
- a mono monitor (I have an AMDEK 300A) and a color-video board.
- This may also be used to change the Colors PCWINDOW uses, but I've not
- tried that.
-
- Make a copy of PCWINDOW.COM, I'll it PCW.COM.
-
- Run debug on PCW.COM
-
- >DEBUG PCW.COM
-
- The address you want to change are at CS:5449, 535D, and 5360.
-
- SO
-
- -E 535D
- xxxx:535D 0E.07 (YOU type the 07 and return)
- -E 5360
- xxxx:5360 0E.07 (YOU type the 07 and return)
- -E 5449
- xxxx:5449 1E.07 (once more)
- -U 535A (lets check!)
-
- (the first 4 instruction should be:
- MOV AX,B800
- MOV BH,07 (as you set it)
- MOV BL,07 (as you set it)
- MOV BYTE PTR [013A],06
-
- -U 5446 (last check)
-
- MOV DL,4F
- MOV BH,07 (your change)
- MOV AL,00
-
-
- -W (don't forget!!!, if all is well)
- -Q
-
- Thats all there is to it! Dave Hamlin.